Blender Documentation Volume II - Reference Guide: Last modified March 29 2004 S68 | ||
---|---|---|
<<< Previous | Python API Reference | Next >>> |
The Blender.World submodule
INTRODUCTION
The module world allows you to access all the data of a Blender World.
Example:
import Blender w = Blender.Get('World') #assume there exists a world named "world" print w.getName() w.hor = [1,1,.2] print w.getHor() |
Function Summary | ||
Blender World or a list of Blender Worlds | Get(name) Get an World from Blender. | |
Blender World | New(name) Creates a new World. |
<<< Previous | Home | Next >>> |
The Lamp Data object | Up | Class World |